home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Objects / moduleobject.c < prev    next >
C/C++ Source or Header  |  1998-06-24  |  4KB  |  191 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Module object implementation */
  33.  
  34. #include "allobjects.h"
  35. #include "ceval.h"
  36.  
  37. typedef struct {
  38.     OB_HEAD
  39.     object *md_dict;
  40. } moduleobject;
  41.  
  42. #include "protos/moduleobject_protos.h"
  43.  
  44. object *
  45. newmoduleobject(name)
  46.     char *name;
  47. {
  48.     moduleobject *m;
  49.     object *nameobj;
  50.     m = NEWOBJ(moduleobject, &Moduletype);
  51.     if (m == NULL)
  52.         return NULL;
  53.     nameobj = newstringobject(name);
  54.     m->md_dict = newdictobject();
  55.     if (m->md_dict == NULL || nameobj == NULL)
  56.         goto fail;
  57.     if (dictinsert(m->md_dict, "__name__", nameobj) != 0)
  58.         goto fail;
  59.     if (dictinsert(m->md_dict, "__doc__", None) != 0)
  60.         goto fail;
  61.     DECREF(nameobj);
  62.     return (object *)m;
  63.  
  64.  fail:
  65.     XDECREF(nameobj);
  66.     DECREF(m);
  67.     return NULL;
  68. }
  69.  
  70. object *
  71. getmoduledict(m)
  72.     object *m;
  73. {
  74.     if (!is_moduleobject(m)) {
  75.         err_badcall();
  76.         return NULL;
  77.     }
  78.     return ((moduleobject *)m) -> md_dict;
  79. }
  80.  
  81. char *
  82. getmodulename(m)
  83.     object *m;
  84. {
  85.     object *nameobj;
  86.     if (!is_moduleobject(m)) {
  87.         err_badarg();
  88.         return NULL;
  89.     }
  90.     nameobj = dictlookup(((moduleobject *)m)->md_dict, "__name__");
  91.     if (nameobj == NULL || !is_stringobject(nameobj)) {
  92.         err_setstr(SystemError, "nameless module");
  93.         return NULL;
  94.     }
  95.     return getstringvalue(nameobj);
  96. }
  97.  
  98. /* Methods */
  99.  
  100. static void
  101. module_dealloc(m)
  102.     moduleobject *m;
  103. {
  104.     if (m->md_dict != NULL) {
  105.         mappingclear(m->md_dict);
  106.         DECREF(m->md_dict);
  107.     }
  108.     free((char *)m);
  109. }
  110.  
  111. static object *
  112. module_repr(m)
  113.     moduleobject *m;
  114. {
  115.     char buf[100];
  116.     char *name = getmodulename((object *)m);
  117.     if (name == NULL) {
  118.         err_clear();
  119.         name = "?";
  120.     }
  121.     sprintf(buf, "<module '%.80s'>", name);
  122.     return newstringobject(buf);
  123. }
  124.  
  125. static object *
  126. module_getattr(m, name)
  127.     moduleobject *m;
  128.     char *name;
  129. {
  130.     object *res;
  131.     if (strcmp(name, "__dict__") == 0) {
  132.         INCREF(m->md_dict);
  133.         return m->md_dict;
  134.     }
  135.     res = dictlookup(m->md_dict, name);
  136.     if (res == NULL)
  137.         err_setstr(AttributeError, name);
  138.     else {
  139. #ifdef SUPPORT_OBSOLETE_ACCESS
  140.         if (is_accessobject(res))
  141.             res = getaccessvalue(res, getglobals());
  142.         else
  143. #endif
  144.             INCREF(res);
  145.     }
  146.     return res;
  147. }
  148.  
  149. static int
  150. module_setattr(m, name, v)
  151.     moduleobject *m;
  152.     char *name;
  153.     object *v;
  154. {
  155. #ifdef SUPPORT_OBSOLETE_ACCESS
  156.     object *ac;
  157. #endif
  158.     if (name[0] == '_' && strcmp(name, "__dict__") == 0) {
  159.         err_setstr(TypeError, "read-only special attribute");
  160.         return -1;
  161.     }
  162. #ifdef SUPPORT_OBSOLETE_ACCESS
  163.     ac = dictlookup(m->md_dict, name);
  164.     if (ac != NULL && is_accessobject(ac))
  165.         return setaccessvalue(ac, getglobals(), v);
  166. #endif
  167.     if (v == NULL) {
  168.         int rv = dictremove(m->md_dict, name);
  169.         if (rv < 0)
  170.             err_setstr(AttributeError,
  171.                    "delete non-existing module attribute");
  172.         return rv;
  173.     }
  174.     else
  175.         return dictinsert(m->md_dict, name, v);
  176. }
  177.  
  178. typeobject Moduletype = {
  179.     OB_HEAD_INIT(&Typetype)
  180.     0,            /*ob_size*/
  181.     "module",        /*tp_name*/
  182.     sizeof(moduleobject),    /*tp_size*/
  183.     0,            /*tp_itemsize*/
  184.     (destructor)module_dealloc, /*tp_dealloc*/
  185.     0,            /*tp_print*/
  186.     (getattrfunc)module_getattr, /*tp_getattr*/
  187.     (setattrfunc)module_setattr, /*tp_setattr*/
  188.     0,            /*tp_compare*/
  189.     (reprfunc)module_repr, /*tp_repr*/
  190. };
  191.